home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / print / hpgl2ps.zip / HPGL2PS.MK < prev    next >
Text File  |  1989-08-09  |  629b  |  40 lines

  1. # Define the extensions for the object and executable files.
  2.  
  3. # TURBO C Memory model
  4. MM=l
  5.  
  6. # Define the compilation rules.
  7.  
  8. .c.obj:
  9.     tcc -m$(MM) -Ic:\tc\include -c $*
  10.  
  11.  
  12. OBJ =    hpgl2ps.obj
  13.  
  14. OBJC =    changesi.obj \
  15. circle.obj \
  16. dxycom.obj \
  17. end_draw.obj \
  18. getopt.obj \
  19. getval.obj \
  20. hpglcom.obj \
  21. linesize.obj \
  22. linetype.obj \
  23. manualfe.obj \
  24. plotdot.obj \
  25. plotinit.obj \
  26. plotps.obj \
  27. userdefc.obj \
  28. ps_macro.obj \
  29. rectangl.obj \
  30. textps.obj \
  31. viewport.obj \
  32. plotcoor.obj \
  33. tick.obj
  34.  
  35. hpgl2ps.exe:    $(OBJ) $(OBJC) hpgl2ps.mk
  36.     tlink /m @hpgl2ps.tl
  37.  
  38. $(OBJC): defn.h hpgl2ps.mk
  39. $(OBJ):    ext.h hpgl2ps.mk
  40.